home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / ARMLINUX / MAIL / 9708 / 000038_owner-linux-arm…r.rutgers.edu _Tue Aug 19 10:37:02 1997.msg < prev    next >
Internet Message Format  |  1997-11-30  |  3KB

  1. Return-Path: <owner-linux-arm-outgoing@vger.rutgers.edu>
  2. Received: from nic.funet.fi (nic.funet.fi [128.214.248.6])
  3.     by odie.barnet.ac.uk (8.8.6/8.8.6) with ESMTP id KAA18806
  4.     for <willy@odie.fluff.org>; Tue, 19 Aug 1997 10:37:01 +0100
  5. Received: from vger.rutgers.edu ([128.6.190.2] EHLO vger.rutgers.edu ident: root [port 19797]) by nic.funet.fi with ESMTP id <2765-16171>; Tue, 19 Aug 1997 12:37:16 +0300
  6. Received: by vger.rutgers.edu id <971673-240>; Tue, 19 Aug 1997 05:35:23 -0400
  7. Received: from hermes.dur.ac.uk ([129.234.4.9] HELO hermes.dur.ac.uk ident: IDENT-NOT-QUERIED [port 60180]) by vger.rutgers.edu with SMTP id <971674-240>; Tue, 19 Aug 1997 05:34:45 -0400
  8. Received: from dust0 by hermes.dur.ac.uk id <KAA07296@hermes.dur.ac.uk>
  9.   (8.6.12/ for dur.ac.uk) with SMTP; Tue, 19 Aug 1997 10:33:51 +0100
  10. Date:     Tue, 19 Aug 1997 10:33:47 +0100 (BST)
  11. From: Ale Terlevich <A.I.Terlevich@durham.ac.uk>
  12. To: Deborah Wallach <kerr@pa.dec.com>
  13. cc: linux-arm@vger.rutgers.edu
  14. Subject: Re: Ftp failure resolution + missing kernel problem
  15. In-Reply-To: <9708190044.AA10463@stowe.pa.dec.com>
  16. Message-ID: <Pine.SOL.3.91-941213.970819102527.21083B-100000@dust0.dur.ac.uk>
  17. MIME-Version: 1.0
  18. Content-Type: TEXT/PLAIN; charset=US-ASCII
  19. X-Orcpt: rfc822;linux-arm@vger.rutgers.edu
  20. Sender: owner-linux-arm@vger.rutgers.edu
  21. Precedence: bulk
  22. Status: RO
  23.  
  24.  
  25.  
  26. On Mon, 18 Aug 1997, Deborah Wallach wrote:
  27.  
  28. > I found my problem!  I added 64 MB to the riscpc (it only had 8 to start
  29. > with), and now the ftp proceeds (more-or-less) cleanly (sometimes I get a
  30. > window popped up asking for a retry, but never does it hang completely).
  31. > Unfortunately, I've developed a new problem.  After the ftp finishes, I
  32. > get asked a bunch more setup things, and proceed through them happily.
  33. > However, just after I select an initial root password, the installer pops
  34. > up a window that says "I couldn't find a kernel!".  In the upper right hand
  35. > corner of the screen is a little note saying it's in the 'Install
  36. > bootloader' part of the install.  The only option is to click 'ok' at this
  37. > point, and playing with the 'Previous', 'Retry', and 'Menu' options of the
  38. > ensuing 'Error Window' get me nowhere (it continues not to find the kernel,
  39. > and eventually tries to reboot the machine).
  40.  
  41.   Ok, here's what I did at this point.
  42.  
  43. go back to riscos
  44.  
  45.   Copy the kernel onto a DOS floppy
  46.  
  47.   boot the kernel (!linux -bootkernel whawtever-your-kernel's-called)
  48. when it asks for extra args, type
  49. root=/dev/hda3 (Assuming your root partition is in the same place as 
  50. mine, i.e. first after RiscOS on your first IDE HD)
  51.  
  52.   This will boot linux off your HD!  You now have linux running
  53.  
  54. Copy the kernel off the DOS floppy (man mtools) and rename it as /vmlinux
  55. (You need to be root to do this)
  56.  
  57. To install the bootloader (The bit that fails in the install)
  58. make a file called /etc/boot.conf with contents such as 
  59.  
  60. # Linux 2.0.30 block with no ramdisk.
  61. kernel {
  62.         name = "Linux 2.0.30";
  63.         path = "/vmlinux";
  64.         root = "/dev/hda3";
  65.         ramdisk = 0;
  66.         flags = readonly;
  67. };
  68.  
  69.  You may need to change this a bit to reflect your disk setup
  70.  
  71. Then type
  72.  
  73. loadmap -v
  74.  
  75.  You can now reboot (CTRL_ALT_DEL) and try the !linux app with the 
  76. *ADFS::0 kernel (or whatever the syntax is)
  77.  
  78.  
  79.   Hope this helps!
  80.  
  81. Ale.